
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(107, 255, 198, 0.3);
            position: relative;
            overflow: hidden;
            text-align: center;
                padding: 10px 18px;             /* Slightly tighter padding */
    border-radius: 5px;            /* Squarish look */
    font-size: 0.8rem;              /* Smaller font to fit more easily */
    min-width: 100px;               /* Optional: makes each button consistent */
    flex: none;                     /* Prevents stretching */
    white-space: nowrap;           /* Keeps text on one line */
}


       

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(38, 209, 252, 0.2), transparent);
            transition: left 0.5s ease;
        }
    .button-container {
               display: flex;
    flex-direction: row;            /* Forces horizontal layout */
    gap: 20px;                      /* Adds spacing between buttons */
    justify-content: center;       /* Centers buttons horizontally */
    flex-wrap: nowrap;             /* Prevent wrapping on smaller screens */
}

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(107, 225, 255, 0.4);
        }

        /* connect Section */
        .connect {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
            flex: 1;
        }

        .connect h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .connect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #ffffff;
            text-align: center;
        }

        .feature-card .desc {
            opacity: 0.8;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .thumb {
            width: 100%;
            max-width: 250px;
            border-radius: 12px;
            margin: 0 auto 20px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

    

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: auto;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-content p {
            opacity: 0.7;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .connect-grid {
                grid-template-columns: 1fr;
            }
            
            .button-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

.price-tag {
    color: #ffc42b;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-family: 'Press Start 2P', sans-serif;
    gap: 6px;
}
        .price-tag img {
            width: 18px;
            height: 18px;
        }
        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.85rem;
            font-weight: bold;
        }
        .product-type {
            color: #ffffffdd;
            font-weight: 500;
            background: rgba(58, 54, 54, 0.41);
            padding: 4px 8px;
            border-radius: 4px;
        }
